home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / comm / tcp / AmiTCPsdk_40.lha / AmiTCP-4.0 / netinclude / bsdsocket.h next >
C/C++ Source or Header  |  1994-10-03  |  626b  |  25 lines

  1. #ifndef BSDSOCKET_H
  2. #define BSDSOCKET_H \
  3.        "$Id: bsdsocket.h,v 4.1 1994/10/03 20:52:20 ppessi Exp $"
  4. /*
  5.  *      Compiler dependent prototypes and inlines for bsdsocket.library
  6.  *
  7.  *      Copyright © 1994 AmiTCP/IP Group, Network Solutions Development, Inc.
  8.  *                       All rights reserved.
  9.  */
  10.  
  11. #include <unistd.h>        /* These should be compiler independent */
  12. #include <clib/netlib_protos.h>
  13.  
  14. #if __SASC
  15. #include <proto/socket.h>
  16. #include <proto/usergroup.h>
  17. #elif __GNUC__
  18. #include <inline/socket.h>
  19. #else
  20. #include <clib/socket_protos.h>
  21. #include <clib/usergroup_protos.h>
  22. #endif
  23.  
  24. #endif /* !BSDSOCKET_H */
  25.